:root {
    --primary-60: #F8F9FA;
    --secondary-30: #008080;
    --accent-10: #E9967A;
    --transition: all 0.3s;
    --logo-size: 5rem;
    --small-btn-padding: 10px 20px;
    --small-radius: 15px;
    --trans-black: #00000087;
    --section-padding: 5rem 0;
    --service-img-size: 15rem;
}

/* ========================== */
/* about section*/
#aboutStori {
    padding: var(--section-padding);
}

.image-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
}


.blob-shape {
    width: 100%;
    height: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    border: 8px solid #008080;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.blob-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blob-shape:hover img {
    transform: scale(1.1);
}

/* Content Styling */
.about-content h3 {
    font-size: 3rem;
    color: #333;
}

.small-image-tag {
    background-color: var(--secondary-30);
    width: max-content;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 20px;
    position: absolute;
    z-index: 5;
    top: 10%;
    right: -20%;
}

.small-image-tag p {
    color: white;
    width: max-content;
}

.short-note ul li {
    display: flex;
    align-items: center;
    justify-content: start;
}

.short-note ul li i,
.short-note ul li h4 {
    color: #145f52;
    font-size: 22px;
}

.short-note ul li h4 {
    margin: 0 20px 0 10px;
}

/* Slides */
#ourValues {
    padding: var(--section-padding);
    /* border-top: 1px solid #ddd; */
}

.slide-info {
    padding: 4rem 8rem;
}

.slide-text h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.slide-text p {
    color: black;
}

.slide-image img {
    border-radius: 20px;
    border: 2px solid var(--secondary-30);
    height: 15rem;
    object-fit: cover;
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    background-color: var(--secondary-30);
    border: 0;
    border-radius: 100%;
}

.carousel-indicators {
    margin-bottom: 0;
}

/* OUR MISSION */
#ourMission {
    background-color: #1f5d6a;
    padding: var(--section-padding);
}

.mission-text {
    text-align: center;
}

.mission-text img {
    width: 5rem;
}

.mission-text h3 {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.mission-text p {
    color: white;
}

.mission {
    border-right: 2px solid var(--accent-10);
}

/* Carousel Click and drag effect */
/* Sets the initial state for the draggable area */
.carousel-inner {
    cursor: grab;
    user-select: none;
    /* Prevents highlighting text while dragging */
}

/* Visually feedback for when the user is actively dragging */
.carousel-inner:active {
    cursor: grabbing;
}

/* Ensure indicators have a smooth color transition */
.carousel-indicators button {
    transition: background-color 0.4s ease, transform 0.2s ease;
}

.carousel-indicators .active {
    background-color: #008080 !important;
    /* Forces your brand Deep Teal */
    transform: scale(1.2);
    /* Subtle pop effect for the active dot */
}